100 |
How can I show the item in italics
thisform.ExContextMenu1 = CreateObject("Exontrol.ContextMenu.1") with thisform.ExContextMenu1 with .Items .Add("Item").Italic = .T. .Add("<i>Item</i>") .Add("").ToString = "Item[itl]" endwith .Select() endwith |
99 |
How can I show the item in bold
thisform.ExContextMenu1 = CreateObject("Exontrol.ContextMenu.1") with thisform.ExContextMenu1 with .Items .Add("Item").Bold = .T. .Add("<b>Item</b>") .Add("").ToString = "Item[bld]" endwith .Select() endwith |
98 |
How can I show the item as disabled but still be able to select or use it
thisform.ExContextMenu1 = CreateObject("Exontrol.ContextMenu.1") with thisform.ExContextMenu1 with .Items .Add("Item").ShowAsDisabled = .T. .Add("").ToString = "Item[showdis=1]" endwith .Select() endwith |
97 |
How can I enable or disable an item
thisform.ExContextMenu1 = CreateObject("Exontrol.ContextMenu.1") with thisform.ExContextMenu1 with .Items .Add("Item").Enabled = .F. .Add("").ToString = "Item[dis]" endwith .Select() endwith |
96 |
How can I add a separator item
thisform.ExContextMenu1 = CreateObject("Exontrol.ContextMenu.1") with thisform.ExContextMenu1 with .Items .Add("Item").CaptionWidth = 128 .Add("<font ;6>separator",1) .Add("Item").CaptionWidth = 128 .Add("").ToString = "<font ;6>separator[sep]" endwith .Select() endwith |
95 |
How can I change the item's foreground color
thisform.ExContextMenu1 = CreateObject("Exontrol.ContextMenu.1") with thisform.ExContextMenu1 with .Items .Add("Item").ForeColor = RGB(255,0,0) .Add("<fgcolor FF0000>Item") .Add("").ToString = "Item[fg=RGB(255,0,0)]" endwith .Select() endwith |
94 |
How can I change the item's background/backcolor, when the item is selected/checked (radio-buttons)
thisform.ExContextMenu1 = CreateObject("Exontrol.ContextMenu.1") with thisform.ExContextMenu1 with .Items with .Add("",2) .GroupPopup = 3 && GroupPopupEnum.exNoGroupPopupFrame Or GroupPopupEnum.exGroupPopup with .Items with .Add("Radio 1") .HotBackColor = RGB(255,255,255) .SelBackColor = RGB(255,0,0) .SelHotBackColor = RGB(255,0,0) .ShowCheckedAsSelected = 1 .Radio = .T. .RadioGroup = 100 .Checked = .T. endwith with .Add("Radio 2") .HotBackColor = RGB(255,255,255) .SelBackColor = RGB(255,0,0) .SelHotBackColor = RGB(255,0,0) .ShowCheckedAsSelected = 1 .Radio = .T. .RadioGroup = 100 endwith .Add("").ToString = "Radio 3[typ=2][show=1][grp=100][bghot=RGB(255,255,255)][bgsel=RGB(255,0,0)][bgselhot=RGB(255,0,0)]" endwith endwith endwith .Select() endwith |
93 |
How can I change the item's background/backcolor, when the item is selected/checked (check-box)
thisform.ExContextMenu1 = CreateObject("Exontrol.ContextMenu.1") with thisform.ExContextMenu1 with .Items with .Add("Check 1") .HotBackColor = RGB(255,255,255) .SelBackColor = RGB(255,0,0) .SelHotBackColor = RGB(255,0,0) .ShowCheckedAsSelected = 1 .Checked = .T. .Check = .T. endwith .Add("").ToString = "Check 2[typ=1][chk=0][show=1][bghot=RGB(255,255,255)][bgsel=RGB(255,0,0)][bgselhot=RGB(255,0,0)]" endwith .Select() endwith |
92 |
How can I prevent showing the border for selected/highlight/hot items
thisform.ExContextMenu1 = CreateObject("Exontrol.ContextMenu.1") with thisform.ExContextMenu1 .Object.Background(102) = RGB(255,255,255) with .Items .Add("Item") .Add("Item") endwith .Select() endwith |
91 |
How can I change the item's background/backcolor, when the cursor hovers it (hot)
thisform.ExContextMenu1 = CreateObject("Exontrol.ContextMenu.1") with thisform.ExContextMenu1 with .Items .Add("Item").HotBackColor = RGB(255,0,0) .Add("").ToString = "Item[bghot=RGB(255,0,0)]" endwith .Select() endwith |
90 |
How can I change the item's background/backcolor
thisform.ExContextMenu1 = CreateObject("Exontrol.ContextMenu.1") with thisform.ExContextMenu1 .VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn") with .Items .Add("Item").BackColor = RGB(255,0,0) .Add("Item").BackColor = 0x1000000 .Add("").ToString = "Item[bg=RGB(255,0,0)]" endwith .Select() endwith |
89 |
How can I specify/assign the item's identifier
thisform.ExContextMenu1 = CreateObject("Exontrol.ContextMenu.1") with thisform.ExContextMenu1 .Debug = .T. with .Items .Add("ID 1",0,1000) .Add("ID 2").ID = 1001 .Add("").ToString = "ID 3[id=1002]" endwith .Select() endwith |
88 |
How can I show a horizontal separator/line between groups (method 3,EBN color)
thisform.ExContextMenu1 = CreateObject("Exontrol.ContextMenu.1") with thisform.ExContextMenu1 .VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn") with .Items with .Add("",2) .GroupPopup = 259 && GroupPopupEnum.exGroupPopupVertical Or GroupPopupEnum.exNoGroupPopupFrame Or GroupPopupEnum.exGroupPopup with .Items with .Add("") .AllowEdit = 3 .EditBorder = 0 .EditWidth = -128 .EditValue = 25 endwith with .Add("") .Enabled = .F. .BackColor = 0x1000000 .ItemHeight = 8 .CaptionWidth = 128 endwith with .Add("") .AllowEdit = 3 .EditBorder = 0 .EditWidth = -128 .EditValue = 25 endwith endwith endwith endwith .Select() endwith |
87 |
How can I show a horizontal separator/line between groups (method 2,solid color)
thisform.ExContextMenu1 = CreateObject("Exontrol.ContextMenu.1") with thisform.ExContextMenu1 with .Items with .Add("",2) .GroupPopup = 259 && GroupPopupEnum.exGroupPopupVertical Or GroupPopupEnum.exNoGroupPopupFrame Or GroupPopupEnum.exGroupPopup with .Items with .Add("") .AllowEdit = 3 .EditBorder = 0 .EditWidth = -128 .EditValue = 25 endwith with .Add("") .Enabled = .F. .BackColor = RGB(128,128,128) .ItemHeight = 8 .CaptionWidth = 128 endwith with .Add("") .AllowEdit = 3 .EditBorder = 0 .EditWidth = -128 .EditValue = 25 endwith endwith endwith endwith .Select() endwith |
86 |
How can I show a horizontal separator/line between groups (method 1,pattern)
thisform.ExContextMenu1 = CreateObject("Exontrol.ContextMenu.1") with thisform.ExContextMenu1 with .Items with .Add("",2) .GroupPopup = 259 && GroupPopupEnum.exGroupPopupVertical Or GroupPopupEnum.exNoGroupPopupFrame Or GroupPopupEnum.exGroupPopup with .Items with .Add("") .AllowEdit = 3 .EditBorder = 0 .EditWidth = -128 .EditValue = 25 endwith with .Add("",2) .GroupPopup = 3 && GroupPopupEnum.exNoGroupPopupFrame Or GroupPopupEnum.exGroupPopup with .Items with .Add("") .Enabled = .F. .ItemHeight = 8 .CaptionWidth = 128 endwith .BackgroundExt = "none[(0,50%-1,100%,2),pattern=0x006,patterncolor=RGB(128,128,128)]" endwith endwith with .Add("") .AllowEdit = 3 .EditBorder = 0 .EditWidth = -128 .EditValue = 25 endwith endwith endwith endwith .Select() endwith |
85 |
How can I show a vertical separator/line between groups (method 3,EBN color)
thisform.ExContextMenu1 = CreateObject("Exontrol.ContextMenu.1") with thisform.ExContextMenu1 .VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn") with .Items with .Add("",2) .GroupPopup = 3 && GroupPopupEnum.exNoGroupPopupFrame Or GroupPopupEnum.exGroupPopup with .Items with .Add("") .ItemHeight = 128 .AllowEdit = 1027 && AllowEditEnum.exItemEditVertical Or AllowEditEnum.exItemEditSlider .EditBorder = 0 .EditWidth = 32 .EditValue = 25 endwith with .Add("") .Enabled = .F. .BackColor = 0x1000000 .ItemHeight = 96 .CaptionWidth = 8 endwith with .Add("") .ItemHeight = 128 .AllowEdit = 1027 && AllowEditEnum.exItemEditVertical Or AllowEditEnum.exItemEditSlider .EditBorder = 0 .EditWidth = 32 .EditValue = 25 endwith endwith endwith endwith .Select() endwith |
84 |
How can I show a vertical separator/line between groups (method 2,solid color)
thisform.ExContextMenu1 = CreateObject("Exontrol.ContextMenu.1") with thisform.ExContextMenu1 with .Items with .Add("",2) .GroupPopup = 3 && GroupPopupEnum.exNoGroupPopupFrame Or GroupPopupEnum.exGroupPopup with .Items with .Add("") .ItemHeight = 128 .AllowEdit = 1027 && AllowEditEnum.exItemEditVertical Or AllowEditEnum.exItemEditSlider .EditBorder = 0 .EditWidth = 32 .EditValue = 25 endwith with .Add("") .Enabled = .F. .BackColor = RGB(128,128,128) .ItemHeight = 96 .CaptionWidth = 8 endwith with .Add("") .ItemHeight = 128 .AllowEdit = 1027 && AllowEditEnum.exItemEditVertical Or AllowEditEnum.exItemEditSlider .EditBorder = 0 .EditWidth = 32 .EditValue = 25 endwith endwith endwith endwith .Select() endwith |
83 |
How can I show a vertical separator/line between groups (method 1,pattern)
thisform.ExContextMenu1 = CreateObject("Exontrol.ContextMenu.1") with thisform.ExContextMenu1 with .Items with .Add("",2) .GroupPopup = 3 && GroupPopupEnum.exNoGroupPopupFrame Or GroupPopupEnum.exGroupPopup with .Items with .Add("") .ItemHeight = 128 .AllowEdit = 1027 && AllowEditEnum.exItemEditVertical Or AllowEditEnum.exItemEditSlider .EditBorder = 0 .EditWidth = 32 .EditValue = 25 endwith with .Add("",2) .GroupPopup = 3 && GroupPopupEnum.exNoGroupPopupFrame Or GroupPopupEnum.exGroupPopup with .Items with .Add("") .Enabled = .F. .ItemHeight = 96 .CaptionWidth = 8 endwith .BackgroundExt = "none[(50%-1,0,2,100%),pattern=6,patterncolor=RGB(128,128,128)]" endwith endwith with .Add("") .ItemHeight = 128 .AllowEdit = 1027 && AllowEditEnum.exItemEditVertical Or AllowEditEnum.exItemEditSlider .EditBorder = 0 .EditWidth = 32 .EditValue = 25 endwith endwith endwith endwith .Select() endwith |
82 |
How can I show a pattern on the items
thisform.ExContextMenu1 = CreateObject("Exontrol.ContextMenu.1") with thisform.ExContextMenu1 with .Items with .Add("",2) .GroupPopup = 3 && GroupPopupEnum.exNoGroupPopupFrame Or GroupPopupEnum.exGroupPopup with .Items .Add("Item 1") .Add("Item 2") .Add("Item 3") endwith endwith .BackColor = RGB(255,255,255) .Padding = "2,2,2,12" var_s = "root[pattern=0x006,patterncolor=RGB(128,128,128),frame=RGB(128,128,128)](bottom[2],bottom[12,text=`<font ;6><fgcolor 808080><off" var_s = var_s + " -2> clipboard </off></font></fgcolor>`,align=0x21])" .BackgroundExt = var_s endwith .Select() endwith |
81 |
How can I show a thick frame arround the items
thisform.ExContextMenu1 = CreateObject("Exontrol.ContextMenu.1") with thisform.ExContextMenu1 with .Items with .Add("",2) .GroupPopup = 3 && GroupPopupEnum.exNoGroupPopupFrame Or GroupPopupEnum.exGroupPopup with .Items .Add("Item 1") .Add("Item 2") .Add("Item 3") endwith endwith .BackColor = RGB(255,255,255) .Padding = "2,2,2,12" var_s = "root[frame=RGB(128,128,128)](bottom[2],bottom[12,text=`<font ;6><fgcolor 808080><off -2> clipboard </off></font></fgcolor>`,alig" var_s = var_s + "n=0x21])" .BackgroundExt = var_s endwith .Select() endwith |
80 |
How can I add some additional icons on the background
thisform.ExContextMenu1 = CreateObject("Exontrol.ContextMenu.1") with thisform.ExContextMenu1 var_s = "gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTql" var_s = var_s + "Vq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0" var_s = var_s + "ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yN" var_s = var_s + "AOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=" .Images(var_s) with .Items with .Add("",2) .GroupPopup = 1 with .Items .Add("Item 1") .Add("Item 2") .Add("Item 3") endwith endwith .BackColor = RGB(255,255,255) .Padding = "0,0,0,16" .BackgroundExt = "root[text=`<img>2</img><font ;6><fgcolor 808080><off -2> clipboard </off></font></fgcolor><img>2</img>`,align=0x21]" endwith .Select() endwith |
79 |
How can I add some additional text on the background
thisform.ExContextMenu1 = CreateObject("Exontrol.ContextMenu.1") with thisform.ExContextMenu1 with .Items with .Add("",2) .GroupPopup = 1 with .Items .Add("Item 1") .Add("Item 2") .Add("Item 3") endwith endwith .BackColor = RGB(255,255,255) .Padding = "0,0,0,8" .BackgroundExt = "root[text=`<font ;6><fgcolor 808080>clipboard`,align=0x21]" endwith .Select() endwith |
78 |
How can I assign a tooltip to an item (method 2)
thisform.ExContextMenu1 = CreateObject("Exontrol.ContextMenu.1") with thisform.ExContextMenu1 .ToString = "ToolTip[id=10][ttp=This is a bit of text that should be shown when cursor hovers the item]" .Select() endwith |
77 |
How can I assign a tooltip to an item (method 1)
|
76 |
How can I assign a spin field to the item (method 2)
*** EditChange event - Occurs when the user alters the item's text box field. *** LPARAMETERS Itm with thisform.ExContextMenu1 DEBUGOUT( Itm ) endwith thisform.ExContextMenu1 = CreateObject("Exontrol.ContextMenu.1") with thisform.ExContextMenu1 with .Items with .Add("Spin") .AllowEdit = 512 .EditWidth = 16 .EditValue = 15 .EditBorder = 0 .EditOption(2) = 1000 endwith with .Add("Edit-Spin") .AllowEdit = 513 && AllowEditEnum.exItemEditSpin Or AllowEditEnum.exItemEditText .EditWidth = -128 .EditValue = 15 .EditOption(2) = 1000 endwith with .Add("Splider-Spin") .AllowEdit = 515 && AllowEditEnum.exItemEditSpin Or AllowEditEnum.exItemEditSlider .EditWidth = -128 .EditValue = 25 .EditBorder = 0 endwith endwith .Select() endwith |
75 |
How can I assign a spin field to the item (method 1)
*** EditChange event - Occurs when the user alters the item's text box field. *** LPARAMETERS Itm with thisform.ExContextMenu1 DEBUGOUT( Itm ) endwith thisform.ExContextMenu1 = CreateObject("Exontrol.ContextMenu.1") with thisform.ExContextMenu1 var_s = "Spin[id=10][edittype=0x0200][edit=15][border=0][max=1000][editwidth=16],Edit-Spin[id=20][edittype=0x0201][edit=15][max=1000][edi" var_s = var_s + "twidth=-128],Splider-Spin[id=30][edittype=0x0203][edit=25][border=0][editwidth=-128]" .ToString = var_s .Select() endwith |
74 |
How can I add a vertical slider (method 2)
thisform.ExContextMenu1 = CreateObject("Exontrol.ContextMenu.1") with thisform.ExContextMenu1 .ToString = "Vertical[id=10][edittype=0x0403][edit=25][border=0][height=128]" .Select() endwith |
73 |
How can I add a vertical slider (method 1)
*** EditChange event - Occurs when the user alters the item's text box field. *** LPARAMETERS Itm with thisform.ExContextMenu1 DEBUGOUT( Itm ) endwith thisform.ExContextMenu1 = CreateObject("Exontrol.ContextMenu.1") with thisform.ExContextMenu1 with .Items with .Add("Vertical") .ItemHeight = 128 .AllowEdit = 1027 && AllowEditEnum.exItemEditVertical Or AllowEditEnum.exItemEditSlider .EditBorder = 0 .EditWidth = 32 .EditValue = 25 endwith endwith .Select() endwith |
72 |
How can I disable an editor (method 2)
thisform.ExContextMenu1 = CreateObject("Exontrol.ContextMenu.1") with thisform.ExContextMenu1 .ToString = "Disabled[id=10][dis][edittype=0x01][edit=text-box][editwidth=-128]" .Select() endwith |
71 |
How can I disable an editor (method 1)
thisform.ExContextMenu1 = CreateObject("Exontrol.ContextMenu.1") with thisform.ExContextMenu1 with .Items with .Add("Disabled") .AllowEdit = 1 .EditWidth = -128 .EditValue = "text-box" .Enabled = .F. endwith endwith .Select() endwith |
70 |
How can I lock an editor (method 2)
thisform.ExContextMenu1 = CreateObject("Exontrol.ContextMenu.1") with thisform.ExContextMenu1 .ToString = "Locked[id=10][edittype=0x0101][edit=disabled text-box][editwidth=-128]" .Select() endwith |
69 |
How can I lock an editor (method 1)
thisform.ExContextMenu1 = CreateObject("Exontrol.ContextMenu.1") with thisform.ExContextMenu1 with .Items with .Add("Locked") .AllowEdit = 257 && AllowEditEnum.exItemEditReadOnly Or AllowEditEnum.exItemEditText .EditWidth = -128 .EditValue = "disabled text-box" endwith endwith .Select() endwith |
68 |
How can I assign a font field to the item (method 2)
*** EditChange event - Occurs when the user alters the item's text box field. *** LPARAMETERS Itm with thisform.ExContextMenu1 DEBUGOUT( Itm ) endwith thisform.ExContextMenu1 = CreateObject("Exontrol.ContextMenu.1") with thisform.ExContextMenu1 with .Items with .Add("Font") .AllowEdit = 7 .EditWidth = -128 .EditValue = "Tahoma" endwith endwith .Select() endwith |
67 |
How can I assign a font field to the item (method 1)
*** EditChange event - Occurs when the user alters the item's text box field. *** LPARAMETERS Itm with thisform.ExContextMenu1 DEBUGOUT( Itm ) endwith thisform.ExContextMenu1 = CreateObject("Exontrol.ContextMenu.1") with thisform.ExContextMenu1 .ToString = "Font[id=10][edittype=0x07][edit=Tahoma][editwidth=-128]" .Select() endwith |
66 |
How can I assign a color field to the item (method 2)
*** EditChange event - Occurs when the user alters the item's text box field. *** LPARAMETERS Itm with thisform.ExContextMenu1 DEBUGOUT( Itm ) endwith thisform.ExContextMenu1 = CreateObject("Exontrol.ContextMenu.1") with thisform.ExContextMenu1 with .Items with .Add("Color") .AllowEdit = 6 .EditBorder = 0 .EditWidth = -128 .EditValue = 255 endwith endwith .Select() endwith |
65 |
How can I assign a color field to the item (method 1)
*** EditChange event - Occurs when the user alters the item's text box field. *** LPARAMETERS Itm with thisform.ExContextMenu1 DEBUGOUT( Itm ) endwith thisform.ExContextMenu1 = CreateObject("Exontrol.ContextMenu.1") with thisform.ExContextMenu1 .ToString = "Color[id=10][edittype=0x06][edit=#FF0000][border=0][editwidth=-128]" .Select() endwith |
64 |
How can I assign a scrollbar field to the item (method 2)
*** EditChange event - Occurs when the user alters the item's text box field. *** LPARAMETERS Itm with thisform.ExContextMenu1 DEBUGOUT( Itm ) endwith thisform.ExContextMenu1 = CreateObject("Exontrol.ContextMenu.1") with thisform.ExContextMenu1 with .Items with .Add("ScrollBar") .AllowEdit = 5 .EditWidth = -128 .EditValue = "25" endwith endwith .Select() endwith |
63 |
How can I assign a scrollbar field to the item (method 1)
*** EditChange event - Occurs when the user alters the item's text box field. *** LPARAMETERS Itm with thisform.ExContextMenu1 DEBUGOUT( Itm ) endwith thisform.ExContextMenu1 = CreateObject("Exontrol.ContextMenu.1") with thisform.ExContextMenu1 .ToString = "ScrollBar[id=10][edittype=0x05][edit=25][editwidth=-128]" .Select() endwith |
62 |
Is it possible to change the tooltip beging shown when I change the slider/scroll/progress value
*** EditChange event - Occurs when the user alters the item's text box field. *** LPARAMETERS Itm with thisform.ExContextMenu1 DEBUGOUT( Itm ) endwith thisform.ExContextMenu1 = CreateObject("Exontrol.ContextMenu.1") with thisform.ExContextMenu1 with .Items with .Add("Progress") .AllowEdit = 4 .EditWidth = -128 .EditValue = 25 .EditOption(8) = "`Current value is: ` + value" endwith endwith .Select() endwith |
61 |
How can I hide the tooltip beging shown when I change the slider/scroll/progress value
*** EditChange event - Occurs when the user alters the item's text box field. *** LPARAMETERS Itm with thisform.ExContextMenu1 DEBUGOUT( Itm ) endwith thisform.ExContextMenu1 = CreateObject("Exontrol.ContextMenu.1") with thisform.ExContextMenu1 with .Items with .Add("Progress") .AllowEdit = 4 .EditWidth = -128 .EditValue = 25 .EditOption(8) = "" endwith endwith .Select() endwith |
60 |
How can I assign a progress field to the item (method 2)
*** EditChange event - Occurs when the user alters the item's text box field. *** LPARAMETERS Itm with thisform.ExContextMenu1 DEBUGOUT( Itm ) endwith thisform.ExContextMenu1 = CreateObject("Exontrol.ContextMenu.1") with thisform.ExContextMenu1 with .Items with .Add("Progress") .AllowEdit = 4 .EditWidth = -128 .EditValue = 25 endwith endwith .Select() endwith |
59 |
How can I assign a progress field to the item (method 1)
*** EditChange event - Occurs when the user alters the item's text box field. *** LPARAMETERS Itm with thisform.ExContextMenu1 DEBUGOUT( Itm ) endwith thisform.ExContextMenu1 = CreateObject("Exontrol.ContextMenu.1") with thisform.ExContextMenu1 .ToString = "Progress[id=10][edittype=0x04][edit=25][editwidth=-128]" .Select() endwith |
58 |
How can I assign a slider field to the item (method 2)
*** EditChange event - Occurs when the user alters the item's text box field. *** LPARAMETERS Itm with thisform.ExContextMenu1 DEBUGOUT( Itm ) endwith thisform.ExContextMenu1 = CreateObject("Exontrol.ContextMenu.1") with thisform.ExContextMenu1 with .Items with .Add("Slider") .AllowEdit = 3 .EditWidth = -128 .EditValue = 25 endwith with .Add("Slider") .AllowEdit = 3 .EditBorder = 0 .EditWidth = -128 .EditOption(1) = 50 .EditOption(2) = 450 .EditOption(3) = 2 .EditOption(4) = 50 var_s = "value = vmin ? '<br><font ;6><b>'+value : ( value = vmax ? '<br><font ;6><b>'+value : ( value = 200 ? '<br><font ;6><b><fgcolor " var_s = var_s + "FF0000>'+value : '' ) )" .EditOption(5) = var_s .EditValue = 345 endwith endwith .Select() endwith |
57 |
How can I assign a slider field to the item (method 1)
*** EditChange event - Occurs when the user alters the item's text box field. *** LPARAMETERS Itm with thisform.ExContextMenu1 DEBUGOUT( Itm ) endwith thisform.ExContextMenu1 = CreateObject("Exontrol.ContextMenu.1") with thisform.ExContextMenu1 var_s = "Slider[id=10][edittype=0x03][edit=25][editwidth=-128],Slider[id=20][edittype=0x03][edit=345][border=0][min=50][max=450][tick=2][" var_s = var_s + "freq=50][ticklabel=value = vmin ? '<br><font ;6><b>'+value : ( value = vmax ? '<br><font ;6><b>'+value : ( value = 200 ? '<br><f" var_s = var_s + "ont ;6><b><fgcolor FF0000>'+value : '' ) )][editwidth=-128]" .ToString = var_s .Select() endwith |
56 |
How can I assign a mask (time) field to the item (method 2)
*** EditChange event - Occurs when the user alters the item's text box field. *** LPARAMETERS Itm with thisform.ExContextMenu1 DEBUGOUT( Itm ) endwith thisform.ExContextMenu1 = CreateObject("Exontrol.ContextMenu.1") with thisform.ExContextMenu1 with .Items with .Add("Time") .AllowEdit = 2 .EditWidth = -128 .EditMask = "99:00:00;;0;overtype,warning=Invalid character" .EditValue = "123456" endwith endwith .Select() endwith |
55 |
How can I assign a mask (time) field to the item (method 1)
*** EditChange event - Occurs when the user alters the item's text box field. *** LPARAMETERS Itm with thisform.ExContextMenu1 DEBUGOUT( Itm ) endwith thisform.ExContextMenu1 = CreateObject("Exontrol.ContextMenu.1") with thisform.ExContextMenu1 .ToString = "Time[id=10][edittype=0x02][edit=12:34:56][mask=99:00:00;;0;overtype,warning=Invalid character][editwidth=-128]" .Select() endwith |
54 |
How can I assign a mask (license key) field to the item (method 2)
*** EditChange event - Occurs when the user alters the item's text box field. *** LPARAMETERS Itm with thisform.ExContextMenu1 DEBUGOUT( Itm ) endwith thisform.ExContextMenu1 = CreateObject("Exontrol.ContextMenu.1") with thisform.ExContextMenu1 with .Items with .Add("License Key") .AllowEdit = 2 .EditWidth = -128 .EditMask = "AAAA-AAAA-AAAA-AAAA" .EditValue = "1234" endwith endwith .Select() endwith |
53 |
How can I assign a mask (license key) field to the item (method 1)
*** EditChange event - Occurs when the user alters the item's text box field. *** LPARAMETERS Itm with thisform.ExContextMenu1 DEBUGOUT( Itm ) endwith thisform.ExContextMenu1 = CreateObject("Exontrol.ContextMenu.1") with thisform.ExContextMenu1 .ToString = "License Key[id=10][edittype=0x02][edit=1234-____-____-____][mask=AAAA-AAAA-AAAA-AAAA][editwidth=-128]" .Select() endwith |
52 |
How can I assign a mask (IP address) field to the item (method 2)
*** EditChange event - Occurs when the user alters the item's text box field. *** LPARAMETERS Itm with thisform.ExContextMenu1 DEBUGOUT( Itm ) endwith thisform.ExContextMenu1 = CreateObject("Exontrol.ContextMenu.1") with thisform.ExContextMenu1 with .Items with .Add("IP Address") .AllowEdit = 2 .EditWidth = -128 .EditMask = "{0,255}.{0,255}.{0,255}.{0,255}" .EditValue = "1.2.3.4" endwith endwith .Select() endwith |
51 |
How can I assign a mask (IP address) field to the item (method 1)
*** EditChange event - Occurs when the user alters the item's text box field. *** LPARAMETERS Itm with thisform.ExContextMenu1 DEBUGOUT( Itm ) endwith thisform.ExContextMenu1 = CreateObject("Exontrol.ContextMenu.1") with thisform.ExContextMenu1 .ToString = "IP Address[id=10][edittype=0x02][edit=1.2.3.4][mask={0,255}.{0,255}.{0,255}.{0,255}][editwidth=-128]" .Select() endwith |
50 |
How can I assign a mask (phone) field to the item (method 2)
*** EditChange event - Occurs when the user alters the item's text box field. *** LPARAMETERS Itm with thisform.ExContextMenu1 DEBUGOUT( Itm ) endwith thisform.ExContextMenu1 = CreateObject("Exontrol.ContextMenu.1") with thisform.ExContextMenu1 with .Items with .Add("Phone") .AllowEdit = 2 .EditWidth = -128 .EditMask = "!(9999) 000 000;;;empty,select=4,overtype,beep" .EditValue = "0771638317" endwith endwith .Select() endwith |
49 |
How can I assign a mask (phone) field to the item (method 1)
*** EditChange event - Occurs when the user alters the item's text box field. *** LPARAMETERS Itm with thisform.ExContextMenu1 DEBUGOUT( Itm ) endwith thisform.ExContextMenu1 = CreateObject("Exontrol.ContextMenu.1") with thisform.ExContextMenu1 .ToString = "Phone[id=10][edittype=0x02][edit=(0771) 638 317][mask=!(9999) 000 000;;;empty,select=4,overtype,beep][editwidth=-128]" .Select() endwith |
48 |
How can I assign a mask (date) field to the item (method 2)
*** EditChange event - Occurs when the user alters the item's text box field. *** LPARAMETERS Itm with thisform.ExContextMenu1 DEBUGOUT( Itm ) endwith thisform.ExContextMenu1 = CreateObject("Exontrol.ContextMenu.1") with thisform.ExContextMenu1 with .Items with .Add("") .AllowEdit = 2 .EditWidth = -128 .EditMask = "`Date: `{1,12}/{1,31}/{1950,2050};;;select=1" .EditValue = {^2015-2-15} endwith with .Add("Date") .AllowEdit = 2 .EditWidth = -128 .EditMask = "!00/00/0000;;0;empty,validateas=1,invalid=Invalid date!,warning=Invalid character!,select=4,overtype" .EditValue = {^2015-2-15} endwith endwith .Select() endwith |
47 |
How can I assign a mask (date) field to the item (method 1)
*** EditChange event - Occurs when the user alters the item's text box field. *** LPARAMETERS Itm with thisform.ExContextMenu1 DEBUGOUT( Itm ) endwith thisform.ExContextMenu1 = CreateObject("Exontrol.ContextMenu.1") with thisform.ExContextMenu1 var_s = "[id=10][edittype=0x02][edit=Date: 2/15/2015][mask=`Date: `{1,12}/{1,31}/{1950,2050};;;select=1][editwidth=-128],Date[id=20][edit" var_s = var_s + "type=0x02][edit=02/15/2015][mask=!00/00/0000;;0;empty,validateas=1,invalid=Invalid date!,warning=Invalid character!,select=4,ove" var_s = var_s + "rtype][editwidth=-128]" .ToString = var_s .Select() endwith |
46 |
How can I assign a mask (integer) field to the item (method 2)
*** EditChange event - Occurs when the user alters the item's text box field. *** LPARAMETERS Itm with thisform.ExContextMenu1 DEBUGOUT( Itm ) endwith thisform.ExContextMenu1 = CreateObject("Exontrol.ContextMenu.1") with thisform.ExContextMenu1 with .Items with .Add("Integer") .AllowEdit = 2 .EditWidth = -128 .EditMask = ";;;float,grouping=,digits=0" .EditValue = 1000 endwith with .Add("Integer-Grouping") .AllowEdit = 2 .EditWidth = -128 .EditMask = ";;;float,decimal=,digits=0,select=1" .EditValue = 1000 endwith with .Add("Integer-In-Range") .AllowEdit = 2 .EditWidth = -128 .EditMask = "{0,2050}" .EditValue = 1000 endwith endwith .Select() endwith |
45 |
How can I assign a mask (integer) field to the item (method 1)
*** EditChange event - Occurs when the user alters the item's text box field. *** LPARAMETERS Itm with thisform.ExContextMenu1 DEBUGOUT( Itm ) endwith thisform.ExContextMenu1 = CreateObject("Exontrol.ContextMenu.1") with thisform.ExContextMenu1 var_s = "Integer[id=10][edittype=0x02][edit=1000][mask=;;;float,grouping=,digits=0][editwidth=-128],Integer-Grouping[id=20][edittype=0x02" var_s = var_s + "][edit=1,000][mask=;;;float,decimal=,digits=0,select=1][editwidth=-128],Integer-In-Range[id=30][edittype=0x02][edit=1000][mask={" var_s = var_s + "0,2050}][editwidth=-128]" .ToString = var_s .Select() endwith |
44 |
How can I assign a mask field to the item (method 2)
*** EditChange event - Occurs when the user alters the item's text box field. *** LPARAMETERS Itm with thisform.ExContextMenu1 DEBUGOUT( Itm ) endwith thisform.ExContextMenu1 = CreateObject("Exontrol.ContextMenu.1") with thisform.ExContextMenu1 with .Items with .Add("Mask") .AllowEdit = 2 .EditWidth = -128 .EditMask = ";;;float,select=1" .EditValue = 1000 endwith endwith .Select() endwith |
43 |
How can I assign a mask field to the item (method 1)
*** EditChange event - Occurs when the user alters the item's text box field. *** LPARAMETERS Itm with thisform.ExContextMenu1 DEBUGOUT( Itm ) endwith thisform.ExContextMenu1 = CreateObject("Exontrol.ContextMenu.1") with thisform.ExContextMenu1 .ToString = "Text-Box[id=10][edittype=0x02][edit=1,000][mask=;;;float,select=1][editwidth=-128]" .Select() endwith |
42 |
How can I assign an edit / text-box to the item (method 2)
*** EditChange event - Occurs when the user alters the item's text box field. *** LPARAMETERS Itm with thisform.ExContextMenu1 DEBUGOUT( Itm ) endwith thisform.ExContextMenu1 = CreateObject("Exontrol.ContextMenu.1") with thisform.ExContextMenu1 with .Items with .Add("Mask") .AllowEdit = 1 .EditValue = "this is a text" .EditWidth = -128 endwith endwith .Select() endwith |
41 |
How can I assign an edit / text-box to the item (method 1)
*** EditChange event - Occurs when the user alters the item's text box field. *** LPARAMETERS Itm with thisform.ExContextMenu1 DEBUGOUT( Itm ) endwith thisform.ExContextMenu1 = CreateObject("Exontrol.ContextMenu.1") with thisform.ExContextMenu1 .ToString = "Text-Box[edit=this is a text][editwidth=-128]" .Select() endwith |
40 |
How can I display a tab into the context menu (method 2)
thisform.ExContextMenu1 = CreateObject("Exontrol.ContextMenu.1") with thisform.ExContextMenu1 .Object.Background(102) = RGB(240,240,240) with .Items var_s = "[id=0][group=0x0103][itemspad=4,4,4,4]([id=-10][group=0x03](),[id=0][bg=RGB(240,240,240)][group=0x03][itemspad=4,4,4,4]([id=-100" var_s = var_s + "]))" .ToString = var_s with .item(-10).Items .Add("",0,0).Padding = "8,0,0,0" with .Add("New Page") var_s1 = "[typ=2][chk=1][spchk=-1][show=1][grp=10][bghot=RGB(255,255,255)][bgsel=RGB(240,240,240)][bgselhot=RGB(240,240,240)][height=16][g" var_s1 = var_s1 + "roup=0x03][tab=-100][pad=2,0,2,0]([id=50][group=0x03]([]))" .ToString = var_s1 .Caption = "Page<off -5><font ;5><b>1</b></font></off>" with .Items .Add("add here fields for page 1").Enabled = .F. endwith endwith with .Add("New Page") var_s2 = "[typ=2][chk=0][spchk=-1][show=1][grp=10][bghot=RGB(255,255,255)][bgsel=RGB(240,240,240)][bgselhot=RGB(240,240,240)][height=16][g" var_s2 = var_s2 + "roup=0x03][tab=-100][pad=2,0,2,0]([id=50][group=0x03]([]))" .ToString = var_s2 .Caption = "Page<off -5><font ;5><b>2</b></font></off>" with .Items .Add("add here fields for page 2").Enabled = .F. endwith endwith .Add("",0,0).Padding = "8,0,0,0" endwith endwith .Select() endwith |
39 |
How can I add check-buttons to items, without showing the check-box (method 2)
thisform.ExContextMenu1 = CreateObject("Exontrol.ContextMenu.1") with thisform.ExContextMenu1 with .Items with .Add("",2) .GroupPopup = 3 && GroupPopupEnum.exNoGroupPopupFrame Or GroupPopupEnum.exGroupPopup with .Items with .Add("Check 1") .Check = .T. .Checked = .T. .ShowCheckedAsSelected = 1 endwith with .Add("Check 2") .Check = .T. .ShowCheckedAsSelected = 1 endwith with .Add("Check 3") .Check = .T. .Checked = .T. .ShowCheckedAsSelected = 1 endwith endwith endwith endwith .Select() endwith |
38 |
How can I add check-buttons to items, without showing the check-box (method 1)
thisform.ExContextMenu1 = CreateObject("Exontrol.ContextMenu.1") with thisform.ExContextMenu1 .ToString = "[group=0x3](Check 1[chk=1][show=1],Check 2[chk=0][show=1],Check 3[chk=1][show=1])" .Select() endwith |
37 |
How can I add radio buttons to items, without showing the radio-buttons (method 2)
thisform.ExContextMenu1 = CreateObject("Exontrol.ContextMenu.1") with thisform.ExContextMenu1 with .Items with .Add("",2) .GroupPopup = 3 && GroupPopupEnum.exNoGroupPopupFrame Or GroupPopupEnum.exGroupPopup with .Items with .Add("Radio 1",Null,1000) .ShowCheckedAsSelected = 1 .Radio = .T. .RadioGroup = 100 endwith with .Add("Radio 2",Null,1001) .ShowCheckedAsSelected = 1 .Radio = .T. .RadioGroup = 100 endwith with .Add("Radio 2",Null,1003) .ShowCheckedAsSelected = 1 .Radio = .T. .RadioGroup = 100 endwith .item(1000).Checked = .T. endwith endwith endwith .Select() endwith |
36 |
How can I add radio buttons to items, without showing the radio-buttons (method 1)
thisform.ExContextMenu1 = CreateObject("Exontrol.ContextMenu.1") with thisform.ExContextMenu1 var_s = "[group=0x3](Radio 1[rad=1][show=1][grp=100][id=1000],Radio 2[rad=0][show=1][grp=100][id=1001],Radio 2[rad=0][show=1][grp=100][id" var_s = var_s + "=1002])" .ToString = var_s .Select() endwith |
35 |
How can I add check-buttons to items (method 2)
thisform.ExContextMenu1 = CreateObject("Exontrol.ContextMenu.1") with thisform.ExContextMenu1 with .Items with .Add("",2) .GroupPopup = 3 && GroupPopupEnum.exNoGroupPopupFrame Or GroupPopupEnum.exGroupPopup with .Items with .Add("Check 1") .Check = .T. .Checked = .T. endwith .Add("Check 2").Check = .T. endwith endwith endwith .Select() endwith |
34 |
How can I add check-buttons to items (method 1)
thisform.ExContextMenu1 = CreateObject("Exontrol.ContextMenu.1") with thisform.ExContextMenu1 .ToString = "[group=0x3](Check 1[chk=1],Check 2[chk=0])" .Select() endwith |
33 |
How can I add radio buttons to items (method 2)
thisform.ExContextMenu1 = CreateObject("Exontrol.ContextMenu.1") with thisform.ExContextMenu1 with .Items with .Add("",2) .GroupPopup = 1 with .Items with .Add("Radio 1",Null,1000) .Radio = .T. .RadioGroup = 100 endwith with .Add("Radio 2",Null,1001) .Radio = .T. .RadioGroup = 100 endwith with .Add("Radio 2",Null,1003) .Radio = .T. .RadioGroup = 100 endwith .item(1000).Checked = .T. endwith endwith endwith .Select() endwith |
32 |
How can I add radio buttons to items (method 1)
thisform.ExContextMenu1 = CreateObject("Exontrol.ContextMenu.1") with thisform.ExContextMenu1 .ToString = "[group=0x1](Radio 1[rad=1][grp=100][id=1000],Radio 2[rad=0][grp=100][id=1001],Radio 2[rad=0][grp=100][id=1002])" .Select() endwith |
31 |
How can I change the selection/highlighting color
thisform.ExContextMenu1 = CreateObject("Exontrol.ContextMenu.1") with thisform.ExContextMenu1 .SelBackColor = RGB(0,0,0) .Object.Background(102) = RGB(128,0,0) .Object.Background(111) = RGB(255,255,255) .ToString = "[group=3](Item 1[chk],Item 2[chk])" .Select() endwith |
30 |
How can I prevent showing/hide the border on the selected/highlighted item
thisform.ExContextMenu1 = CreateObject("Exontrol.ContextMenu.1") with thisform.ExContextMenu1 .Object.Background(102) = .SelBackColor .ToString = "Item 1,Item 2" .Select() endwith |
29 |
How can I display a tab into the context menu (method 1)
thisform.ExContextMenu1 = CreateObject("Exontrol.ContextMenu.1") with thisform.ExContextMenu1 .Object.Background(102) = RGB(240,240,240) var_s = "[id=10][group=0x0103][itemspad=4,4,4,4]([id=20][group=0x03]([id=30][pad=8,0,0,0],Page<off -5><font ;5><b>1</b></font></off>[id=4" var_s = var_s + "0][typ=2][chk=1][spchk=-1][show=1][grp=10][bghot=RGB(255,255,255)][bgsel=RGB(240,240,240)][bgselhot=RGB(240,240,240)][height=16]" var_s = var_s + "[group=0x03][tab=9000][pad=2,0,2,0]([id=50][group=0x03](add here fields for page 1[dis])),Page<off -5><font ;5><b>2</b></font></" var_s = var_s + "off>[id=120][typ=2][spchk=-1][show=1][grp=10][bghot=RGB(255,255,255)][bgsel=RGB(240,240,240)][bgselhot=RGB(240,240,240)][height=" var_s = var_s + "16][group=0x03][tab=9000][pad=2,0,2,0]([id=130][group=0x03](add here fields for page 2[dis])),[id=180][pad=8,0,0,0]),[id=190][bg" var_s = var_s + "=RGB(240,240,240)][group=0x03][itemspad=4,4,4,4]([id=9000]))" .ToString = var_s .Select() endwith |
28 |
How do I prevent highlighting the item (method 2.b)
thisform.ExContextMenu1 = CreateObject("Exontrol.ContextMenu.1") with thisform.ExContextMenu1 with .Items .Add("No highlight").Enabled = .F. .Add("Item 2") .Add("Item 3") endwith .Select() endwith |
27 |
How do I prevent highlighting the item (method 2.a)
thisform.ExContextMenu1 = CreateObject("Exontrol.ContextMenu.1") with thisform.ExContextMenu1 with .Items with .Add("No highlight",2) .Items.Add("") .GroupPopup = 3 && GroupPopupEnum.exNoGroupPopupFrame Or GroupPopupEnum.exGroupPopup endwith .Add("Item 2") .Add("Item 3") endwith .Select() endwith |
26 |
How do I prevent highlighting the item (method 1.b)
thisform.ExContextMenu1 = CreateObject("Exontrol.ContextMenu.1") with thisform.ExContextMenu1 .Items.ToString = "No highlight[dis],Item 2,Item 3" .Select() endwith |
25 |
How do I prevent highlighting the item (method 1.a)
thisform.ExContextMenu1 = CreateObject("Exontrol.ContextMenu.1") with thisform.ExContextMenu1 .Items.ToString = "No highlight[group=0x3][arrow=0]([]),Item 2,Item 3" .Select() endwith |
24 |
How can I can I assign pictures or images for the item (method 2)
thisform.ExContextMenu1 = CreateObject("Exontrol.ContextMenu.1") with thisform.ExContextMenu1 .Object.HTMLPicture("pic1") = "c:\exontrol\images\zipdisk.gif" .Object.HTMLPicture("pic2") = "c:\exontrol\images\auction.gif" with .Items .Add("Item").HTMLImage = "pic1" .Add("Item").HTMLImage = "pic2" .Add("",1) .Add("Item <img>pic1</img>") .Add("Item <img>pic2</img>") .Add("",1) .Add("<img>pic1</img> Item <img>pic2</img>") endwith .Select() endwith |
23 |
How can I can I assign pictures or images for the item (method 1)
thisform.ExContextMenu1 = CreateObject("Exontrol.ContextMenu.1") with thisform.ExContextMenu1 .Object.HTMLPicture("pic1") = "c:\exontrol\images\zipdisk.gif" .Object.HTMLPicture("pic2") = "c:\exontrol\images\auction.gif" .ToString = "Item[himg=pic1],Item[himg=pic2],[sep],Item <img>pic1</img>,Item <img>pic2</img>,[sep],<img>pic1</img> Item <img>pic2</img>" .Select() endwith |
22 |
How can I can I assign icons for the item (method 2)
thisform.ExContextMenu1 = CreateObject("Exontrol.ContextMenu.1") with thisform.ExContextMenu1 var_s = "gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTql" var_s = var_s + "Vq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0" var_s = var_s + "ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yN" var_s = var_s + "AOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=" .Images(var_s) with .Items .Add("Item").Image = 1 .Add("Item").Image = 2 .Add("",1) .Add("Item <img>1</img>") .Add("Item <img>2</img>") .Add("",1) .Add("Item <img>1</img>").Image = 1 endwith .Select() endwith |
21 |
How can I can I assign icons for the item (method 1)
thisform.ExContextMenu1 = CreateObject("Exontrol.ContextMenu.1") with thisform.ExContextMenu1 var_s = "gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTql" var_s = var_s + "Vq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0" var_s = var_s + "ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yN" var_s = var_s + "AOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=" .Images(var_s) .Items.ToString = "Item[img=1],Item[img=2],[sep],Item <img>1</img>,Item <img>2</img>,[sep],Item <img>1</img>[img=1]" .Select() endwith |
20 |
How can I change the visual appearance / background color (EBN) for a collection of items/group (method 2)
thisform.ExContextMenu1 = CreateObject("Exontrol.ContextMenu.1") with thisform.ExContextMenu1 .VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn") with .Items .Padding = "2,2,2,2" .BackColor = 0x1000000 .Add("Item 1") .Add("Item 2") .Add("Item 3") endwith .Select() endwith |
19 |
How can I change the visual appearance / background color (EBN) for a collection of items/group (method 1)
thisform.ExContextMenu1 = CreateObject("Exontrol.ContextMenu.1") with thisform.ExContextMenu1 .VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn") .Items.ToString = "[itemsbg=0x1000000][itemspad=2,2,2,2][group=0x103](Item 1,Item 2,Item 3)" .Select() endwith |
18 |
How can I change the background color for a collection of items/group (method 2)
thisform.ExContextMenu1 = CreateObject("Exontrol.ContextMenu.1") with thisform.ExContextMenu1 with .Items .Padding = "2,2,2,2" .BackColor = RGB(255,0,0) .Add("Item 1") .Add("Item 2") .Add("Item 3") endwith .Select() endwith |
17 |
How can I change the background color for a collection of items/group (method 1)
thisform.ExContextMenu1 = CreateObject("Exontrol.ContextMenu.1") with thisform.ExContextMenu1 .Items.ToString = "[itemsbg=RGB(255,0,0)][itemspad=2,2,2,2][group=0x103](Item 1,Item 2,Item 3)" .Select() endwith |
16 |
How can I change the visual appearance / background color (EBN) for a specified item (method 2)
thisform.ExContextMenu1 = CreateObject("Exontrol.ContextMenu.1") with thisform.ExContextMenu1 .VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn") with .Items .Add("Item 1") .Add("Item 2").BackColor = 0x1000000 .Add("Item 3") endwith .Select() endwith |
15 |
How can I change the visual appearance / background color (EBN) for a specified item (method 1)
thisform.ExContextMenu1 = CreateObject("Exontrol.ContextMenu.1") with thisform.ExContextMenu1 .VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn") .Items.ToString = "Item 1,Item 2[bg=0x1000000],Item 3" .Select() endwith |
14 |
How can I change the background color for a specified item (method 2)
thisform.ExContextMenu1 = CreateObject("Exontrol.ContextMenu.1") with thisform.ExContextMenu1 with .Items .Add("Item 1") .Add("Item 2").BackColor = RGB(255,0,0) .Add("Item 3") endwith .Select() endwith |
13 |
How can I change the background color for a specified item (method 1)
thisform.ExContextMenu1 = CreateObject("Exontrol.ContextMenu.1") with thisform.ExContextMenu1 .Items.ToString = "Item 1,Item 2[bg=RGB(255,0,0)],Item 3" .Select() endwith |
12 |
How do I add a popup or a sub-menu so it show when cursor hovers it (method 2)
thisform.ExContextMenu1 = CreateObject("Exontrol.ContextMenu.1") with thisform.ExContextMenu1 with .Items with .Add("Popup",2).Items .Add("Item 1") .Add("Item 2") .Add("Item 3") endwith endwith .Select() endwith |
11 |
How do I add a popup or a sub-menu so it show when cursor hovers it (method 1)
thisform.ExContextMenu1 = CreateObject("Exontrol.ContextMenu.1") with thisform.ExContextMenu1 .Items.ToString = "Popup(Item 1,Item 2,Item 3)" .Select() endwith |
10 |
How can I arrange the items by grouping (method 2)
thisform.ExContextMenu1 = CreateObject("Exontrol.ContextMenu.1") with thisform.ExContextMenu1 with .Items with .Add("",2) .GroupPopup = 3 && GroupPopupEnum.exNoGroupPopupFrame Or GroupPopupEnum.exGroupPopup with .Items with .Add("Horizontal",2) .GroupPopup = 1 with .Items .Add("Sub-Item <b>A</b>") .Add("Sub-Item <b>B</b>") .Add("Sub-Item <b>C</b>") endwith endwith .Add("").CaptionWidth = 16 with .Add("Vertical",2) .Alignment = 1 .GroupPopup = 257 && GroupPopupEnum.exGroupPopupVertical Or GroupPopupEnum.exGroupPopup with .Items .Add("Sub-Item <b>A</b>") .Add("Sub-Item <b>B</b>") .Add("Sub-Item <b>C</b>") endwith endwith .Add("").CaptionWidth = 16 with .Add("Popup",2) with .Items .Add("Sub-Item <b>A</b>") .Add("Sub-Item <b>B</b>") .Add("Sub-Item <b>C</b>") endwith endwith endwith endwith endwith .Select() endwith |
9 |
How can I arrange the items by grouping (method 1)
thisform.ExContextMenu1 = CreateObject("Exontrol.ContextMenu.1") with thisform.ExContextMenu1 var_s = "[group=0x03](Horizontal[group=0x01](Sub-Item <b>A</b>,Sub-Item <b>B</b>,Sub-Item <b>C</b>),[captionwidth=16],Vertical[group=0x01" var_s = var_s + "01][align=1](Sub-Item <b>A</b>,Sub-Item <b>B</b>,Sub-Item <b>C</b>),[captionwidth=16],Popup(Sub-Item <b>A</b>,Sub-Item <b>B</b>," var_s = var_s + "Sub-Item <b>C</b>),[captionwidth=160])" .Items.ToString = var_s .Select() endwith |
8 |
How can I arrange some items vertically, and some horizontally (method 2)
thisform.ExContextMenu1 = CreateObject("Exontrol.ContextMenu.1") with thisform.ExContextMenu1 with .Items with .Add("",2) with .Items .Add("1") .Add("2") .Add("3") endwith .GroupPopup = 3 && GroupPopupEnum.exNoGroupPopupFrame Or GroupPopupEnum.exGroupPopup endwith with .Add("",2) with .Items .Add("4") .Add("5") .Add("6") endwith .GroupPopup = 3 && GroupPopupEnum.exNoGroupPopupFrame Or GroupPopupEnum.exGroupPopup endwith with .Add("",2) with .Items .Add("7") .Add("8") .Add("9") endwith .GroupPopup = 3 && GroupPopupEnum.exNoGroupPopupFrame Or GroupPopupEnum.exGroupPopup endwith endwith .Select() endwith |
7 |
How can I arrange some items vertically, and some horizontally (method 1)
thisform.ExContextMenu1 = CreateObject("Exontrol.ContextMenu.1") with thisform.ExContextMenu1 .Items.ToString = "[group=3](1,2,3),[group=3](4,5,6),[group=3](7,8,9)" .Select() endwith |
6 |
How can I assign multiple-lines to an item (method 2)
thisform.ExContextMenu1 = CreateObject("Exontrol.ContextMenu.1") with thisform.ExContextMenu1 with .Items with .Add("",2) with .Items .Add("Item 1").Caption = "Item <br><c><b>1" .Add("Item 2").Caption = "Item <br><c><b>2" .Add("Item 3").Caption = "Item <br><c><b>3" endwith .GroupPopup = 3 && GroupPopupEnum.exNoGroupPopupFrame Or GroupPopupEnum.exGroupPopup endwith endwith .Select() endwith |
5 |
How can I assign multiple-lines to an item (method 1)
thisform.ExContextMenu1 = CreateObject("Exontrol.ContextMenu.1") with thisform.ExContextMenu1 .Items.ToString = "[group=3](Item <br><c><b>1,Item <br><c><b>2,Item <br><c><b>3)" .Select() endwith |
4 |
How can I add new items arranged horizontally to the context menu (method 2)
thisform.ExContextMenu1 = CreateObject("Exontrol.ContextMenu.1") with thisform.ExContextMenu1 with .Items with .Add("",2) with .Items .Add("Item 1") .Add("Item 2") .Add("Item 3") endwith .GroupPopup = 3 && GroupPopupEnum.exNoGroupPopupFrame Or GroupPopupEnum.exGroupPopup endwith endwith .Select() endwith |
3 |
How can I add new items arranged horizontally to the context menu (method 1)
thisform.ExContextMenu1 = CreateObject("Exontrol.ContextMenu.1") with thisform.ExContextMenu1 .Items.ToString = "[group=3](Item 1,Item 2,Item 3)" .Select() endwith |
2 |
How can I add new items to the context menu (method 2)
thisform.ExContextMenu1 = CreateObject("Exontrol.ContextMenu.1") with thisform.ExContextMenu1 with .Items .Add("Item 1") .Add("Item 2") .Add("Item 3") endwith .Select() endwith |
1 |
How can I add new items to the context menu (method 1)
thisform.ExContextMenu1 = CreateObject("Exontrol.ContextMenu.1") with thisform.ExContextMenu1 .Items.ToString = "Item 1,Item 2,Item 3" .Select() endwith |